{% load static %} {% include "header.html" %} {% include "navigation.html" %}

Account and profile



Account

{% csrf_token %} {% if data.user.profile.auth == 'local' %} {% endif %}
ID {{data.user.username}}
Email {% if data.edit == 'email' %}
{% else %} {{data.user.email}}{% if data.user.profile.auth == 'local' %} | Change{% endif %} {% endif %}
Password {% if data.edit == 'password' %}
{% else %} ******* | Change {% endif %}
Auth {% if data.user.profile.auth == 'local' %} Local {% elif data.user.profile.auth == 'oidc' %} Open ID Connect {% else %} {{ data.user.profile.auth }} {% endif %}

Profile

Time Zone {% if data.edit == 'timezone' %} {% include "components/tzselect.html" %} {% else %} {{data.profile.timezone}} | Change {% endif %}
Extra configurations {% for conf_uuid, conf_data in data.profile.extra_confs.items %} {{ conf_data.type }} {% if conf_data.object_uuid %} {% for computing in data.computings %} {% if conf_data.object_uuid == computing.uuid_as_str %} @ {{ computing.name }} {% endif %} {% endfor %} {% endif %} : {{conf_data.value}} | delete
{% endfor %} Add new...

KeyPair

Default public key
{% if data.user.profile.auth == 'oidc' %}
{% csrf_token %}
{% else %}
{% endif %}






{% include "footer.html" %}